/* ==========================
   ABOUT
========================== */

.about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px;
    background: transparent;
}

.about-header {

    text-align: center;

    max-width: 900px;

    margin: 0 auto 60px;
}

.about-header h2 {

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    line-height: 1.1;

    margin: 20px 0;

    font-weight: 700;
}

.about-header h2 span {

    display: block;

    background: linear-gradient(
        135deg,
        var(--orange),
        var(--purple)
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-header p {

    max-width: 800px;

    margin: 0 auto;

    color: rgba(255,255,255,.75);

    line-height: 1.8;

    font-size: 1.05rem;
}

/* ==========================
   VALUES GRID
========================== */

.about-values {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

/* ==========================
   CARD
========================== */

.value-card {

    position: relative;

    padding: 30px;

    min-height: 260px;

    border-radius: 24px;

    background: rgba(255,255,255,.05);

    backdrop-filter: blur(24px);

    border: 1px solid rgba(255,255,255,.08);

    overflow: hidden;

    transition: all .4s ease;
}

.value-card:hover {

    transform: translateY(-8px);

    border-color: rgba(247,148,29,.3);

    box-shadow:
        0 25px 50px rgba(128,0,128,.15);
}

/* Number */

.value-card span {

    display: block;

    font-size: 72px;

    font-weight: 700;

    line-height: 1;

    color: rgba(255,255,255,.05);

    margin-bottom: 20px;
}

/* Title */

.value-card h4 {

    font-size: 30px;

    margin-bottom: 16px;

    position: relative;

    z-index: 2;
}

/* Text */

.value-card p {

    color: rgba(255,255,255,.75);

    line-height: 1.8;

    position: relative;

    z-index: 2;
}

/* Orange Glow */

.value-card::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -100px;
    right: -100px;

    background: radial-gradient(
        circle,
        rgba(247,148,29,.10),
        transparent 70%
    );

    pointer-events: none;
}

/* Purple Glow */

.value-card::after {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -100px;
    left: -100px;

    background: radial-gradient(
        circle,
        rgba(128,0,128,.15),
        transparent 70%
    );

    pointer-events: none;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 992px) {

    .about {

        padding: 80px 20px;
    }

    .about-values {

        grid-template-columns: 1fr;
    }

    .value-card {

        min-height: auto;
    }

    .about-header h2 {

        font-size: 2.5rem;
    }
}   

/* ==========================
   CLIENT STRIP
========================== */

.about-clients {

    margin-top: 80px;
}

.clients-strip {

    position: relative;

    padding: 32px 0;

    border-radius: 24px;

    background: rgba(247, 148, 29, 0.18);

    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

    border: 1px solid rgba(247, 148, 29, 0.25);

    box-shadow:
        0 20px 60px rgba(247, 148, 29, 0.15);

    overflow: hidden;
}

/* subtle glow */

.clients-strip::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    top: -200px;
    right: -150px;

    background: radial-gradient(
        circle,
        rgba(247,148,29,.35),
        transparent 50%
    );

    pointer-events: none;
}

.clients-title {

    text-align: center;

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.65);

    margin-bottom: 25px;
}

/* ==========================
   LOGO SLIDER
========================== */

.about-logo-slider {

    width: 100%;

    overflow: hidden;

    position: relative;
}

.about-logo-slider::before,
.about-logo-slider::after {

    content: "";

    position: absolute;

    top: 0;

    width: 100px;

    height: 100%;

    z-index: 2;

    pointer-events: none;
}

.about-logo-slider::before {

    left: 0;

    background: linear-gradient(
        to right,
        rgba(35,0,35,1),
        transparent
    );
}

.about-logo-slider::after {

    right: 0;

    background: linear-gradient(
        to left,
        rgba(35,0,35,1),
        transparent
    );
}

.about-logo-track {

    display: flex;

    align-items: center;

    gap: 80px;

    width: max-content;

    animation: logoScroll 22s linear infinite;
}

.about-logo-track img {

    height: 55px;

    width: auto;

    filter:
        brightness(0)
        invert(1);

    opacity: 1;
}

.about-logo-track img:hover {

    opacity: 1;

    filter: grayscale(0%);
}

@keyframes logoScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}